home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat España 14
/
MacFormat n. 14 (Spain)
/
MacFormat 14.bin
/
C de cerca
/
Codewarrior Lite
/
MacOS Support
/
MacHeaders
/
MacHeaders.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1995-12-23
|
391 b
|
28 lines
/*
* MacHeaders.h
*
* Processor independant interface to the MacHeaders<xxx> files ...
*/
#ifdef __cplusplus
#if __POWERPC__
#include <MacHeadersPPC++>
#elif __CFM68K__
#include <MacHeadersCFM68K++>
#else
#include <MacHeaders68K++>
#endif
#else
#if __POWERPC__
#include <MacHeadersPPC>
#elif __CFM68K__
#include <MacHeadersCFM68K>
#else
#include <MacHeaders68K>
#endif
#endif